Mac在使用上不能使用 ll 列出目录和文件,可以通过设置别名的方式实现。
mac -bash: ll: command not found
解决方法:
跳到个人目录下面
lunadeMacBook-Air:~ luna$ cd
lunadeMacBook-Air:~ luna$ pwd
/Users/luna
打开.bash_profile
lunadeMacBook-Air:~ luna$ vi .bash_profile
在最后面添加下面两个别名
alias ll=’ls -alF’
alias la=’ls -A’
启用新配置
lunadeMacBook-Air:~ luna$ source .bash_profile
原理是利用登陆shell的时候设置别名,从而达到ll,la的效果
来源:https://www.cnblogs.com/sandyyeh/archive/2018/02/03/8410944.html